home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 018a / zip2zi31.zip / ZIPRDZ_B.BAT < prev   
DOS Batch File  |  1993-05-31  |  862b  |  33 lines

  1. @Echo off
  2. Echo ZIPRDZ_B.BAT To Clean up & Remove Sub_Dir Z_B and it's Sub_Dirs
  3. Echo ZIP2ZIP TESTING TOOL ONLY. The Other ZIP?????.BAT Files Must Be On The Path
  4. Echo Used manually on cmd line. Very Powerful delete program for SubDir Z_B only.
  5. Echo Cancel with ^C (Control C) or...
  6. Pause
  7.    Call ZIP2-SDE.BAT  Z_B
  8.        IF "%FSIZE%"==""       GoTo Prog_Err
  9.         IF "%FSIZE%"=="0"     GoTo NOT_EXIST
  10.          Cd Z_B
  11.          Dir /p
  12.          Echo Fixing to Zap it.. Are You Sure?
  13.          Echo Cancel with ^C (Control C) or...
  14.  
  15.          Pause
  16.  
  17.          Attrib -h -r -s *.*  /S
  18.          PKZIP JUNK   -mrp -e0
  19.          Del JUNK.ZIP >Nul
  20.          Cd..
  21.          Rd Z_B
  22.          GoTo End
  23.  
  24. :NOT_EXIST
  25.    Echo Z_B does not exist off this SubDir.
  26.    GoTo End
  27.  
  28. :PROG_ERR
  29.    Echo Major Logic Error. Canceling
  30.    GoTo End
  31. :End
  32.    Set FSIZE=
  33.